home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_theme.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  1KB  |  30 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5. #else
  6. #ifndef E_THEME_H
  7. #define E_THEME_H
  8.  
  9. EAPI int         e_theme_init(void);
  10. EAPI int         e_theme_shutdown(void);
  11.  
  12. EAPI int         e_theme_edje_object_set(Evas_Object *o, char *category, char *group);
  13. EAPI const char *e_theme_edje_file_get(char *category, char *group);
  14. EAPI void        e_theme_file_set(char *category, char *file);
  15.  
  16. EAPI int             e_theme_config_set(const char *category, const char *file);
  17. EAPI E_Config_Theme *e_theme_config_get(const char *category);
  18. EAPI int             e_theme_config_remove(const char *category);
  19. EAPI Evas_List      *e_theme_config_list(void);
  20.  
  21. EAPI int        e_theme_category_find(const char *category);
  22. EAPI Evas_List *e_theme_category_list(void);
  23. EAPI int        e_theme_transition_find(const char *transition);
  24. EAPI Evas_List *e_theme_transition_list(void);
  25. EAPI int        e_theme_border_find(const char *border);
  26. EAPI Evas_List *e_theme_border_list(void);
  27.     
  28. #endif
  29. #endif
  30.